home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / game / patch / WHDIGamesE-F.lzh / F17Challenge.lha / F17Challenge / Install_F17Challenge < prev    next >
Text File  |  1999-11-17  |  4KB  |  188 lines

  1. ;****************************
  2.  
  3. (set #readme-file "f17challengehd.readme") ;name of readme file
  4.  
  5. ;****************************
  6. ;----------------------------
  7. ; Checks if given program is reachable via the path
  8. ; if not abort install
  9. ; IN:  #program - to check
  10. ; OUT: -
  11.  
  12. (procedure P_chkrun
  13.   (if
  14.     (= 0 (run ("cd SYS:\nWhich %s" #program)))
  15.     ("")
  16.     (abort ("You must install \"%s\" first !\nIt must be accessible via the path.\nYou can find it in the WHDLoad package." #program))
  17.   )
  18. )
  19.  
  20. ;****************************
  21.  
  22. (if
  23.   (exists #readme-file)
  24.   (if
  25.     (= 0 (run ("SYS:Utilities/Multiview %s" #readme-file)))
  26.     ("")
  27.     (run ("SYS:Utilities/More %s" #readme-file))
  28.   )
  29. )
  30.  
  31. (set #program "WHDLoad")
  32. (P_chkrun)
  33.  
  34. ; in expert mode ask for source drive
  35. (if
  36.   (= @user-level 2)
  37.   (
  38.     (set #CI_unit
  39.       (askchoice
  40.     (prompt "Select source drive for diskimages")
  41.     (default 0)
  42.     (choices "DF0:" "DF1:" "DF2:" "DF3:")
  43.     (help @askchoice-help)
  44.       )
  45.     )
  46.   )
  47. )
  48.  
  49. (set #CI_drive ("DF%ld:" #CI_unit))
  50.  
  51. (set @default-dest
  52.   (askdir
  53.     (prompt ("Where should \"%s\" installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
  54.     (help @askdir-help)
  55.     (default @default-dest)
  56.     (disk)
  57.   )
  58. )
  59. (set #dest (tackon @default-dest @app-name))
  60. (if
  61.   (exists #dest)
  62.   (
  63.     (set #choice
  64.       (askbool
  65.         (prompt ("\nDirectory \"%s\" already exists.\n Should it be deleted ?" #dest))
  66.         (default 1)
  67.         (choices "Delete" "Skip")
  68.         (help @askbool-help)
  69.       )
  70.     )
  71.     (if
  72.       (= #choice 1)
  73.       (run ("Delete \"%s\" \"%s.info\" All" #dest #dest))
  74.     )
  75.   )
  76. )
  77. (makedir #dest
  78.   (help @makedir-help)
  79.   (infos)
  80. )
  81.  
  82. ;----------------------------
  83.  
  84. (copyfiles
  85.   (help @copyfiles-help)
  86.   (source ("%s.Slave" @app-name))
  87.   (dest #dest)
  88. )
  89. (if
  90.   (exists ("%s.newicon" @app-name))
  91.   (set #icon
  92.     (askchoice
  93.       (prompt "\nWhich icon do you like to install ?\n")
  94.       (default 0)
  95.       (choices "Normal" "NewIcon")
  96.       (help @askchoice-help)
  97.     )
  98.   )
  99.   (set #icon 0)
  100. )
  101. (select #icon
  102.   (set #icon ("%s.inf" @app-name))
  103.   (set #icon ("%s.newicon" @app-name))
  104. )
  105. (copyfiles
  106.   (help @copyfiles-help)
  107.   (source #icon)
  108.   (newname ("%s.info" @app-name))
  109.   (dest #dest)
  110. )
  111. (if
  112.   (exists #readme-file)
  113.   (copyfiles
  114.     (help @copyfiles-help)
  115.     (source #readme-file)
  116.     (dest #dest)
  117.   )
  118. )
  119. (if
  120.   (exists ("%s.info" #readme-file))
  121.   (copyfiles
  122.     (help @copyfiles-help)
  123.     (source ("%s.info" #readme-file))
  124.     (dest #dest)
  125.   )
  126. )
  127.  
  128. (copyfiles
  129.     (help @copyfiles-help)
  130.     (source "blk")
  131.     (dest #dest)
  132.     (infos)
  133. )
  134.  
  135. ;----------------------------
  136.  
  137. (message ("\n\n\n\n\n\Please insert %s Disk 1 into %s" @app-name #CI_drive))
  138.  
  139.     (if
  140.         (= 0 (run ("boot2file %ld \"%s/boot1\" >\"con:///1000/Ripping Disk1 Boot.../CLOSE\"" #CI_unit #dest )))
  141.         ("")
  142.         (abort "\"boot2file\" must be in your PATH !")
  143.     )
  144.  
  145.     (if
  146.         (= 0 (run ("rob2file %ld \"%s/data1\" 2 121 0x4349534F >con:///1000//CLOSE" #CI_unit #dest )))
  147.         ("")
  148.         (abort "\"rob2file\" must be in your PATH !")
  149.     )
  150.  
  151.     (if
  152.         (= 0 (run ("C:join \"%s/boot1\" \"%s/blk\" \"%s/data1\" AS \"%s/Disk.1\" " #dest #dest #dest #dest)))
  153.         ("")
  154.         (abort "Could not join boot and image!")
  155.     )
  156.  
  157. (run ("Delete \"%s/boot1\" QUIET FORCE" #dest))
  158. (run ("Delete \"%s/data1\" QUIET FORCE" #dest))
  159.  
  160.  
  161. (message ("\n\n\n\n\n\Please insert %s Disk 2 into %s" @app-name #CI_drive))
  162.  
  163.     (if
  164.         (= 0 (run ("boot2file %ld \"%s/boot2\" >\"con:///1000/Ripping Disk2 Boot.../CLOSE\"" #CI_unit #dest )))
  165.         ("")
  166.         (abort "\"boot2file\" must be in your PATH !")
  167.     )
  168.  
  169.     (if
  170.         (= 0 (run ("rob2file %ld \"%s/data2\" 2 159 0x4349534F >con:///1000//CLOSE" #CI_unit #dest )))
  171.         ("")
  172.         (abort "\"rob2file\" must be in your PATH !")
  173.     )
  174.  
  175.     (if
  176.         (= 0 (run ("C:join \"%s/boot2\" \"%s/blk\" \"%s/data2\" AS \"%s/Disk.2\" " #dest #dest #dest #dest)))
  177.         ("")
  178.         (abort "Could not join boot and image!")
  179.     )
  180.  
  181. (run ("Delete \"%s/boot2\" QUIET FORCE" #dest))
  182. (run ("Delete \"%s/data2\" QUIET FORCE" #dest))
  183. (run ("Delete \"%s/blk\" QUIET FORCE" #dest))
  184.  
  185. ;----------------------------
  186.  
  187. (exit)
  188.